home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Inventor Labs: Transportation
/
InventorLabs - Transportation.iso
/
pc
/
builders
/
media
/
netacess
/
hminet.dir
/
00025_Script_25
< prev
next >
Wrap
Text File
|
1997-04-04
|
852b
|
44 lines
on exitFrame
global WebBrowser
--
-- wait here for AOL to go online
--
if the machineType = 256 then
if WebBrowser(mIsBrowserRunning) = 0 then
go "Start"
else
if WebBrowser(mIsAOLOnline) <> 0 then
go frame the frame
end if
end if
else
put 1 into myError
put "Waiting for AOL to go online" into cast "status"
put Browser( "AOLOnline" ) into myError
if myError <> 0 then
go frame the frame
if myError = 0 then
put "AOL is Online" into cast "status"
end if
--
-- if the user hits cancel, we need to cancel out of this launch
--
if myError = -600 then
set myError = 0
go to "Start"
end if
end if
end if
end